set givTransitionType to getAt(givTransitionLookupList, value(TR))
if (clip1 = "black") or (char 1 to 2 of clip1 = "AD") then
set givTransFrom to "MainMonitorCastBlack"
else
if gSISystem = "MAC" then
set givTransFrom to clip1 & "L.BMP"
else
set givTransFrom to clip1 & "L.IND"
end if
end if
if (clip2 = "black") or (char 1 to 2 of clip2 = "AD") then
set givTransTo to "MainMonitorCastBlack"
else
if gSISystem = "MAC" then
set givTransTo to clip2 & "F.BMP"
else
set givTransTo to clip2 & "F.IND"
end if
end if
duplicate(cast givTransFrom, cast 501)
duplicate(cast givTransTo, cast 502)
set the name of cast 501 to "foo"
set the name of cast 502 to "bar"
MessagePut("going to frame ivTrans" & TR)
put "Duck0"
go("ivTrans" & TR)
put "Duck2"
end
on EditListSave
global givState, givEditListSave, gSISystem, gSIHDPath, gSIMiscX
MessagePut("edit list save")
PlaySoundWait("CLIK2.AIF")
if (the mode of givState <> #edit) or (count(the editList of givState) < 1) then
nothing()
exit
end if
if objectp(givEditListSave) then
givEditListSave(mdispose)
end if
set filenm to EMPTY
if gSISystem = "MAC" then
set filenm to givMyDialog(mPutFile, "editlist.sik", EMPTY)
else
set filenm to givMyDialog(mPutFile, EMPTY, "*.sik", "*.sik")
end if
if filenm = EMPTY then
MessagePut("save file cancelled")
exit
end if
if fileExists(filenm) then
if gSIMiscX(mAnswer, "Replace file " & QUOTE & filenm & QUOTE & "?", EMPTY, "Replace", "Cancel") = "Cancel" then
exit
end if
end if
if gSISystem = "MAC" then
set givEditListSave to FileIO(mnew, "write", filenm)
else
set givEditListSave to FileIO(mnew, "write", filenm)
end if
if not objectp(givEditListSave) then
MessagePut("could not initialize editListSave, save failed")
exit
end if
givEditListSave(mSetFinderInfo, "SIKD", "SIKD")
givEditListSave(mWriteString, "%" & string(the editList of givState) & RETURN)
MessagePut("wrote out " & the editList of givState)
givEditListSave(mWriteString, "%" & the userName of givState & RETURN)
givEditListSave(mWriteString, "%" & the userTitle of givState & RETURN)
givEditListSave(mWriteString, "%" & the userLoc of givState & RETURN)
givEditListSave(mdispose)
end
on EditListAdd
global givState
PlaySoundWait("CLIK2.AIF")
if count(the questionSelectList of givState) > 0 then
repeat with I = 1 to count(the questionSelectList of givState)
append(the editList of givState, getAt(GetMonitorListByNumber(the activeMonitor of givState), getAt(the questionSelectList of givState, I)))
end repeat
else
append(the editList of givState, GetClipID(the activeMonitor of givState))
end if
set the editListPtr of givState to count(the editList of givState)
MessagePut("after add, editList:" && the editList of givState)
DisplayEditTextBox()
end
on EditListRemove
global givState
PlaySoundWait("CLIK2.AIF")
if count(the editList of givState) > 0 then
deleteAt(the editList of givState, the editListPtr of givState)
if count(the editList of givState) < the editListPtr of givState then
set the editListPtr of givState to count(the editList of givState)
end if
MessagePut("after remove, editList:" && the editList of givState)
end if
DisplayEditTextBox()
end
on EditListRemoveAll
global givState
PlaySoundWait("CLIK2.AIF")
set the editList of givState to []
set the editListPtr of givState to 0
DisplayEditTextBox()
end
on EditListReplace
global givState
PlaySoundWait("CLIK2.AIF")
if count(the editList of givState) > 0 then
deleteAt(the editList of givState, the editListPtr of givState)
if count(the questionSelectList of givState) > 0 then
repeat with I = 1 to count(the questionSelectList of givState)
addAt(the editList of givState, the editListPtr of givState, getAt(GetMonitorListByNumber(the activeMonitor of givState), getAt(the questionSelectList of givState, I)))
set the editListPtr of givState to the editListPtr of givState + 1
end repeat
set the editListPtr of givState to the editListPtr of givState - 1
else
addAt(the editList of givState, the editListPtr of givState, GetClipID(the activeMonitor of givState))
end if
MessagePut("after replace, editList:" && the editList of givState)
end if
DisplayEditTextBox()
end
on EditListInsert
global givState
PlaySoundWait("CLIK2.AIF")
if the editListPtr of givState = 0 then
set the editListPtr of givState to 1
end if
if count(the questionSelectList of givState) > 0 then
repeat with I = 1 to count(the questionSelectList of givState)
addAt(the editList of givState, the editListPtr of givState, getAt(GetMonitorListByNumber(the activeMonitor of givState), getAt(the questionSelectList of givState, I)))
set the editListPtr of givState to the editListPtr of givState + 1
end repeat
set the editListPtr of givState to the editListPtr of givState - 1
else
addAt(the editList of givState, the editListPtr of givState, GetClipID(the activeMonitor of givState))
end if
MessagePut("after insert, editList:" && the editList of givState)
DisplayEditTextBox()
end
on DisplayEditTextBox
global givState, givTextRegColor, givTextHiliteColor, givVideoLookupList
MessagePut("display edit text box...")
if listp(the editList of givState) = 0 then
MessagePut("null edit list, init edit list to []")
set the editList of givState to []
set the editListPtr of givState to 0
end if
if count(the editList of givState) = 0 then
set the text of field "EditTextBox" to "*no edit list*"
set the foreColor of field "EditTextBox" to givTextRegColor
else
set tempText to EMPTY
repeat with I = 1 to count(the editList of givState)
set id to getAt(the editList of givState, I)
set tag to item 5 of getaProp(givVideoLookupList, id)
put tag & RETURN after tempText
end repeat
set the text of field "EditTextBox" to tempText
updateStage()
HiliteEditTextBox()
end if
end
on UpdateEditTextBox newPtr
global givState
set j to the editListPtr of givState
MessagePut("old ptr is " & j)
if (j < 1) or (j > the number of lines in field "EditTextBox") then
nothing()
else
set S to offset(" <--", line j of field "EditTextBox")
if S <> 0 then
delete char S to S + 4 of line j of field "EditTextBox"
end if
set the editListPtr of givState to newPtr
MessagePut("new ptr is " & newPtr)
HiliteEditTextBox()
end if
end
on HiliteEditTextBox
global givState, givTextRegColor, givTextHiliteColor, givLastIndexLine
set the foreColor of field "EditTextBox" to givTextRegColor
set N to the number of lines in field "EditTextBox"
set j to the editListPtr of givState
MessagePut("about to set hilite, # lines:" && N && " ptr:" && j && "givLastIndexLine is" && givLastIndexLine)